/* Projects Section Styling */
#projects {
    color: #00ffff;
    padding: 60px 20px;
    text-align: center;
}

.projects-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

/* Title Styling */
.projects-title {
    font-size: 3rem;
    margin-bottom: 40px;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 255, 225, 0.5);
    color: #00ffff;
}

/* Container Styling */
.projects-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* Project Card Styling */
.project-card {
    padding: 20px;
    background: rgba(16, 20, 21, 0.8);
    backdrop-filter: sepia(20);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 255, 225, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* On Hover */
.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

.project-banner-wrapper {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.project-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Project Name */
.project-name {
    font-size: 1.5rem;
    color: #00ffff;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Project Description */
.project-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #ddd;
    margin-bottom: 10px;
    margin-top: 10px;
}

/* Project Link */
.project-link {
    color: #00ffff;
    text-decoration: none;
    font-weight: bold;
    transition: text-decoration 0.3s ease, color 0.3s ease;
    margin-bottom: 10px;
    margin-top: 10px;
}

.project-link:hover {
    text-decoration: underline;
    color: #00cccc;
}

/* Design Link */
.design-link {
    color: #ffffffea;
    text-decoration: none;
    font-weight: bold;
    transition: text-decoration 0.3s ease, color 0.3s ease;
    margin-bottom: 10px;
    margin-top: 10px;
}

.design-link:hover {
    text-decoration: underline;
    color: #ffffff;
}

.designButton {
    margin-top: 20px;
}



@media (max-width: 768px) {
    /* General Section Styling */
    #projects {
        padding: 40px 10px;
        text-align: center;
    }

    .projects-content {
        padding: 0 10px;
    }

    /* Title Styling */
    .projects-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    /* Container Styling */
    .projects-container {
        gap: 15px;
        padding: 0;
        flex-direction: column;
        align-items: center;
    }

    /* Project Card Styling */
    .project-card {
        width: 90%;
        padding: 15px;
    }

    /* Project Name */
    .project-name {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    /* Project Description */
    .project-description {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Project Link */
    .project-link {
        font-size: 1rem;
    }
}

